Sophie

Sophie

distrib > Scientific%20Linux > 5x > x86_64 > media > main-src > by-pkgid > 65e9200d4848183ce3a20933fe9e909c > files > 24

java-1.7.0-openjdk-1.7.0.111-2.6.7.1.el5_11.src.rpm

#!/bin/sh

ZIP_SRC=openjdk/jdk/src/share/native/java/util/zip/zlib-*
JPEG_SRC=openjdk/jdk/src/share/native/sun/awt/image/jpeg/jpeg-6b
GIF_SRC=openjdk/jdk/src/share/native/sun/awt/giflib
PNG_SRC=openjdk/jdk/src/share/native/sun/awt/libpng
PCSC_SRC=openjdk/jdk/src/solaris/native/sun/security/smartcardio/MUSCLE

echo "Removing built-in libs (they will be linked)"

echo "Removing zlib"
if [ ! -d ${ZIP_SRC} ]; then
	echo "${ZIP_SRC} does not exist. Refusing to proceed."
	exit 1
fi	
rm -rvf ${ZIP_SRC}

echo "Removing libjpeg"
if [ ! -f ${JPEG_SRC}/jdhuff.c ]; then # some file that sound definitely exist
	echo "${JPEG_SRC} does not contain jpeg sources. Refusing to proceed."
	exit 1
fi	

rm -rvf ${JPEG_SRC}

echo "Removing giflib"
if [ ! -d ${GIF_SRC} ]; then
	echo "${GIF_SRC} does not exist. Refusing to proceed."
	exit 1
fi	
rm -rvf ${GIF_SRC}

echo "Removing libpng"
if [ ! -d ${PNG_SRC} ]; then
	echo "${PNG_SRC} does not exist. Refusing to proceed."
	exit 1
fi	
rm -rvf ${PNG_SRC}

echo "Removing libpcsc headers"
if [ ! -d ${PCSC_SRC} ]; then
	echo "${PCSC_SRC} does not exist. Refusing to proceed."
	exit 1
fi	
rm -rvf ${PCSC_SRC}

echo "Removing SunEC sources"
rm -vf openjdk/jdk/src/share/classes/sun/security/ec/ECDHKeyAgreement.java
rm -vf openjdk/jdk/src/share/classes/sun/security/ec/ECDSASignature.java
rm -vf openjdk/jdk/src/share/classes/sun/security/ec/ECKeyPairGenerator.java
rm -vf openjdk/jdk/src/share/classes/sun/security/ec/SunEC.java
rm -vf openjdk/jdk/src/share/classes/sun/security/ec/SunECEntries.java
rm -rvf openjdk/jdk/src/share/native/sun/security/ec
rm -rvf openjdk/jdk/make/sun/security/ec