diff options
| author | rhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4> | 2008-11-27 16:05:54 +0000 | 
|---|---|---|
| committer | rhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4> | 2008-11-27 16:05:54 +0000 | 
| commit | 2cd81aedce1f3e0cf3a1c597e2420110a5a7894a (patch) | |
| tree | 7fe740917fbb54b8e10e42c40bcd69d27bed6ff3 /dev/cpp/glibmm/glibmm.SlackBuild | |
| parent | acbbe3011c0d08bf44de093f9d9cd3a1d08ac14a (diff) | |
| download | slackbuilds-2cd81aedce1f3e0cf3a1c597e2420110a5a7894a.tar.gz slackbuilds-2cd81aedce1f3e0cf3a1c597e2420110a5a7894a.tar.bz2 | |
packages now shipping with slack-required
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@1980 370017ae-e619-0410-ac65-c121f96126d4
Diffstat (limited to 'dev/cpp/glibmm/glibmm.SlackBuild')
| -rw-r--r-- | dev/cpp/glibmm/glibmm.SlackBuild | 32 | 
1 files changed, 17 insertions, 15 deletions
| diff --git a/dev/cpp/glibmm/glibmm.SlackBuild b/dev/cpp/glibmm/glibmm.SlackBuild index 893547ca..92558ea5 100644 --- a/dev/cpp/glibmm/glibmm.SlackBuild +++ b/dev/cpp/glibmm/glibmm.SlackBuild @@ -10,9 +10,9 @@  #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General  #  Public License for more details.  # -#  You should have received a copy of the GNU General Public License along with -#  this program; if not, write to the Free Software Foundation, Inc., 59 Temple -#  Place - Suite 330, Boston, MA 02111-1307, USA +#  You should have received a copy of the GNU General Public License along +#  with this program; if not, write to the Free Software Foundation, Inc., +#  59 Temple Place - Suite 330, Boston, MA 02111-1307, USA  #  # slackbuild for glibmm, by Silvio Rhatto  # requires: libsigc++ glib  @@ -31,7 +31,7 @@ CWD="$(pwd)"  SRC_NAME="glibmm"  PKG_NAME="glibmm"  ARCH=${ARCH:=i486} -SRC_VERSION=${VERSION:=2.14.2} +SRC_VERSION=${VERSION:=2.12.10}  PKG_VERSION="$(echo "$SRC_VERSION" | tr '[[:blank:]-]' '_')"  BUILD=${BUILD:=1rha}  SRC_DIR=${SRC_DIR:=$CWD}/$PKG_NAME @@ -57,6 +57,7 @@ elif [ "$ARCH" = "s390" ]; then  elif [ "$ARCH" = "x86_64" ]; then    SLKCFLAGS="-O2 -fPIC"    LIBDIR="$PREFIX/lib64" +  LDFLAGS="-L/lib64 -L/usr/lib64"  fi  # Set error codes (used by createpkg) @@ -77,21 +78,16 @@ mkdir -p "$PKG_WORK" || exit $ERROR_MKDIR  # Dowload source if necessary  SRC="$SRC_NAME-$VERSION.tar.bz2" -URL="http://ftp.acc.umu.se/pub/GNOME/sources/glibmm/2.14/$SRC" +URL="http://ftp.acc.umu.se/pub/GNOME/sources/glibmm/2.12/$SRC"  if [ ! -s "$SRC_DIR/$SRC" ] || ! bunzip2 -t "$SRC_DIR/$SRC" 2> /dev/null; then    wget "$URL" -O "$SRC_DIR/$SRC" || exit $ERROR_WGET  fi -MD5SUM_SRC="$(md5sum "$SRC_DIR/$SRC" | cut -d " " -f 1)" -MD5SUM_URL=58b4fdc97738795a19b1f5ad37f186b4 - -[ "$MD5SUM_SRC" == "$MD5SUM_URL" ] || exit $ERROR_MD5 -  # Untar  cd "$PKG_WORK"  tar --no-same-owner --no-same-permissions -xvf "$SRC_DIR/$SRC" || exit $ERROR_TAR -PKG_SRC="$PWD/`ls -l | awk '/^d/ { print $8 }'`" +PKG_SRC="$PWD/`ls -l | awk '/^d/ { print $NF }'`"  cd "$PKG_SRC"  # Configure @@ -115,7 +111,7 @@ make install DESTDIR="$PKG" || exit $ERROR_INSTALL  )  # Install documentation -DOCS="NEWS TODO README AUTHORS INSTALL ChangeLog MAINTAINERS COPYING readme.*" +DOCS="NEWS TODO README AUTHORS INSTALL ChangeLog MAINTAINERS COPYING LICENSE SIGNATURE readme.*"  mkdir -p "$PKG/usr/doc/$PKG_NAME-$PKG_VERSION" || exit $ERROR_MKDIR  for doc in $DOCS; do    if [ -f "$doc" ]; then @@ -127,9 +123,9 @@ done  mkdir -p "$PKG/install" || exit $ERROR_MKDIR  cat << EODESC > "$PKG/install/slack-desc"  # HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description.  Line +# The "handy ruler" below makes it easier to edit a package description. Line  # up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in.  You must +# on the right side marks the last column you can put a character in. You must  # make exactly 11 lines for the formatting to be correct.  It's also  # customary to leave one space after the ':'. @@ -147,11 +143,17 @@ glibmm:  glibmm:  EODESC +# Copy slack-required +mkdir -p "$PKG/install" || exit $ERROR_MKDIR +if [ -f "$CWD/slack-required" ]; then +  cp $CWD/slack-required $PKG/install +fi +  # Build the package  cd "$PKG"  makepkg -l y -c n "$REPOS/$PKG_NAME-$PKG_VERSION-$ARCH-$BUILD.tgz" || exit $ERROR_MKPKG  # Delete source and build directories if requested -if [ "$CLEANUP" == "yes" ]; then +if [ "$CLEANUP" == "yes" ] || [ "$1" = "--cleanup" ]; then    rm -rf "$PKG_WORK" "$PKG"  fi | 
